home *** CD-ROM | disk | FTP | other *** search
/ Chip 1994 March / CHIP0394.BIN / digital / kommunik / wwwmac / machttp.sit / MacHTTP 1.3 / MacHTTP Software / MacHTTP.config < prev    next >
Text File  |  1994-05-01  |  5KB  |  114 lines

  1. #MacHTTP Configuration file, v. 1.3
  2. VERSION 1.3
  3.  
  4. #The format of this file is free form, with a few exceptions. Lines not
  5. #starting with a keyword are ignored. There can only be 20 total suffix
  6. #definitions (i.e., TEXT, BINARY, and SCRIPT commands). Also, security
  7. #entries (ALLOW, DENY) are evaluated in the order specified in the config file.
  8. #Note, all entries are converted to upper case by MacHTTP, so the config file isn't
  9. #case sensitive.
  10.  
  11. #The following line defines the default file type if a suffix match isn't found.
  12. #The syntax is: DEFAULT <default transfer type> <default MIME type>
  13. DEFAULT TEXT text/html
  14.  
  15. ################ IMPORTANT NEW INFO!!!! ####################
  16. #These lines define the suffix file type mappings.
  17. #There is a maximum of 20 suffix definitions. Supplying less than
  18. #this will cause MacHTTP to use internal defaults for the undefined remainder.
  19. #
  20. #The syntax is <type> <suffix> <mac file type> <mac creator> <mime type>
  21. #
  22. #Unspecified parameters should be replaced with "*".  MacHTTP tries to match
  23. #a file suffix first. Failing that, it tries to match Mac file type info, and if it
  24. #can, Mac creator info as well. Matching either suffix or type/creator determines
  25. #the transfer type and MIME type. If the client supports HTTP/1.0, the appropriate
  26. #MIME header will be constructed and returned, based on the info below.
  27. #Scripts are responsible for generating their own HTTP/1.0 headers!!!
  28.  
  29. TEXT    .HTML TEXT * text/html
  30. BINARY  .GIF  GIFf * image/gif
  31. SCRIPT  .SCRIPT TEXT * text/html
  32. SCRIPT  * TEXT ToyS text/html
  33. APPL    .EXE APPL * text/html
  34. BINARY  .PICT PICT * image/pict
  35. TEXT    .TXT TEXT * text/plain
  36. TEXT   .HQX TEXT * application/mac-binhex40
  37. BINARY  .JPG JPEG * image/jpeg
  38. BINARY  .JPEG JPEG * image/jpeg
  39. BINARY .AU * * audio/basic
  40. BINARY .AIFF * * audio/x-aiff
  41. BINARY .XBM * * image/x-xbm
  42. BINARY  .MOV MooV * video/quicktime
  43. BINARY .MPEG MPEG * video/mpeg
  44. BINARY .WORD WDBN MSWD application/msword
  45. BINARY .XL XLS3 * application/excel
  46. BINARY .SIT SITD * application/x-stuffit
  47.  
  48. #The following lines specify where to find HTML files for error messages, the
  49. #default home (or index) page, the name of the log file, and the message
  50. #returned for security violations.
  51. ERROR   :Error.html
  52. INDEX   :Default.html
  53. LOG     :MacHTTP.log
  54. NOACCESS :NoAccess.html
  55.  
  56. #Sets the timeout for inactive connections to 60 seconds
  57. TIMEOUT 60
  58.  
  59. #Sets the max number of simultaneous users to 8.
  60. #The minimum value is 3, the maximum is 1000 (!!!)
  61. #For larger values, you should monitor memory usage and increase
  62. #MacHTTP's memory allocation in the Finder accordingly.
  63. MAXUSERS 8
  64.  
  65. #Sets the number of "listens" MacHTTP performs simultaneously. For
  66. #busy servers with clients that report "Unable to connect" errors,
  67. #this number should be increased. If the "Listening" statistic in
  68. #the status window ever drops to 1, some clients may miss connecting.
  69. #Default is 5, minimum is 3, maximum is 50.
  70. MAXLISTENS 3
  71.  
  72. #A single copy of MacHTTP listens on a single port for multiple
  73. #connections. The HTTP standard port is 80. Users may define any port
  74. #they'd like to listen on, but internet standards say that ports
  75. #numbered 1024 and below are reserved for "Well known services" that
  76. #are pre-defined. That means if you change MacHTTP's port from 80,
  77. #you should pick a number greater than 1024 to avoid conflicting with
  78. #things like telnet, gopher, ftp, nfs, pop, etc. that all have ports
  79. #assigned below 1024.
  80. PORT 80
  81.  
  82. #Configure access permissions. There is an implied "DENY *" that is evaluated 
  83. #prior to any user security specifications if present. Otherwise, the default is
  84. #"ALLOW *". End complete host IP addresses with a "." for an exact match. Otherwise
  85. #a statement like "ALLOW 129.106.3" would match hosts 129.106.30.*, 129.106.31.*,
  86. #129.106.32.*, etc.
  87. #NOTE!!! "ALLOW *" and "DENY *" are not valid syntax! 
  88.  
  89. #ALLOW 129.106.3.
  90. #DENY 129.106.3.1.
  91.  
  92. #If the following line is uncommented, MacHTTP will hide the status window when
  93. # it is in the background.
  94. #HIDEWINDOW
  95.  
  96. ###################################################
  97. ###################################################
  98. # Additions for multi-threaded transfers
  99.  
  100. # This is the number of ticks that MacHTTP will "steal" from other processes while
  101. # sending data to clients. This equates directly to how much time MacHTTP will spend
  102. # processing connections. Your Mac will effectively be dedicated to MacHTTP for this
  103. # period of time. The argument is in "ticks", which are 60ths of a second. The default
  104. # is .5 seconds. (30 ticks) Values can range between 0 and 120.
  105.  
  106. PIG_DELAY 30
  107.  
  108. # This is the chunk size that MacHTTP will divide file transfers into. The larger the
  109. # chunk, the longer it will take to transmit over slow connections. The smaller it is, the
  110. # more times MacHTTP will be able to swap between servicing multiple connections and
  111. # freeing the Mac to work on other processes. The argument represents the max number of
  112. # bytes to be sent in a single MacTCP write to the client. The min is 256, the max is 10240.
  113.  
  114. DUMP_BUF_SIZE 8192